home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Text / Edit / GoldED-Demo / installdata / golded / developer / api / examples / timer / init.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  475 b   |  41 lines

  1. #include "defs.h"
  2.  
  3. /// "prototypes"
  4.  
  5. Prototype BOOL InitC(void);
  6. Prototype void ExitC(void);
  7.  
  8. ///
  9. /// "init"
  10.  
  11. /* ----------------------------------- InitC -----------------------------------
  12.  
  13.  Library startup code (C entry point).
  14.  
  15. */
  16.  
  17. BOOL
  18. InitC(void)
  19. {
  20.     NewList(&HostList);
  21.  
  22.     return(TRUE);
  23. }
  24.  
  25. ///
  26. /// "exit"
  27.  
  28. /* ----------------------------------- ExitC -----------------------------------
  29.  
  30.  Library startup code (C entry point).
  31.  
  32. */
  33.  
  34. void
  35. ExitC(void)
  36. {
  37.     ;
  38. }
  39.  
  40. ///
  41.